//
// Copyright (c) 2009 All Right Reserved
//
// vl
//
// 2009-01-01
// Contains ...
using JetBrains.Annotations;
namespace LargoCommon.Music
{
/// Note Number.
public enum MusicalNoteAlter {
/// Note alter.
[UsedImplicitly]
Natural = 0,
/// Note alter.
[UsedImplicitly]
DoubleFlat = -2,
/// Note alter.
[UsedImplicitly]
Flat = -1,
/// Note alter.
[UsedImplicitly]
Sharp = 1,
/// Note alter.
[UsedImplicitly]
DoubleSharp = 2
}
}